home *** CD-ROM | disk | FTP | other *** search
/ DOpus Plus / DOpus Plus.iso / Tutorial / ARexx Tutorial / TuteRexx / DopusMatchdesktop.dopus5 < prev    next >
Text File  |  1998-09-12  |  290b  |  13 lines

  1. /* DopusMatchdesktop.dopus5 */
  2. options results
  3. address 'DOPUS.1'
  4. dopus front
  5. dopus matchdesktop 'SYS:Prefs'
  6. if result = 1 then
  7.   text = 'Your Desktop path is SYS:Prefs, very strange :)'
  8. else
  9.   text = 'Your Desktop path isn''t SYS:Prefs, good :)'
  10. dopus request '"'text'" OK'
  11. dopus back
  12. exit
  13.